home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2000 September / maximum-cd-2000-09.iso / Vampire the Masquerade / vampire_demo.exe / Codex.nob / EffectDiscBloodStrength.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-06-22  |  748 b   |  8 lines

  1. public class EffectDiscBloodStrength extends Codex {
  2.    public void effectstarted(int actorGuid, int effectGuid, int creatorGuid, int duration) {
  3.       CodexActor _Creator = new CodexActor(creatorGuid);
  4.       ((CodexThing)_Creator).SetShell("redCloudShell", 20480, 0.0F, 1.0F, 1.0F, 1.0F);
  5.       ((CodexThing)_Creator).SpawnThing("redMagic");
  6.    }
  7. }
  8.